home *** CD-ROM | disk | FTP | other *** search
/ PC-Blue - MS DOS Public Domain Library / PC-Blue MS-DOS Public Domain Library - NYACC.iso / vol169 / demo.dat < prev    next >
Encoding:
Text File  |  1986-11-24  |  1.0 KB  |  46 lines

  1. demo    cell    ascii
  2.     screen    "reset"
  3.     display    " "
  4.     display    " "
  5.     display    " "
  6.     display    "Learn System ver. 0.6 Demo"
  7.     display    " "
  8.     display    "Directions:"
  9.     display    "    Reply to statements on each"
  10.     display    "    screen or just press the   "
  11.     display    "    return key to be lead to   "
  12.     display    "    next screen. Enter the key-"
  13.     display    "    word `EXIT' anytime to     "
  14.     display    "    return to either a menu or"
  15.     display    "    this screen.              "
  16.     display    " "
  17.     display    "Enter uppercase keyword:"
  18.     display    " "
  19.     display    "  DOS - return to DOS"
  20.     display    "  LESSON - sample lesson"
  21.     display    "  PCC - sample ad"
  22.     display    "  OVERLAY - overlay sample"
  23.     display    "  COLOR - color sample"
  24.     next    demo
  25. exit    correct    demo
  26. dos    correct    /exit
  27. les    learn    lesson1
  28. pcc    learn    "pcc"
  29. ov    correct    overlay
  30. co    correct    color
  31. overlay    cell    ansi
  32.     screen    "gover0"
  33.     screen    "gover1"
  34.     next    over2
  35. over2    cell    ansi
  36.     screen    "gover2"
  37.     next    over3
  38. over3    cell    ansi
  39.     screen    "gover3"
  40.     next    demo
  41. color    cell    ansi
  42.     screen    p0
  43.     screen    "p1"
  44.     screen    "p2"
  45.     next    demo
  46.